From 7bd7bcec0d70cf644f1d9efece8f4864859517f4 Mon Sep 17 00:00:00 2001 From: Benjamin Otte Date: Wed, 26 Jun 2013 15:04:24 +0200 Subject: [PATCH] settings Deprecate properties Deprecate the properties that were brought back from the dead in the last patch. --- gtk/gtksettings.c | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/gtk/gtksettings.c b/gtk/gtksettings.c index 9f44d99f07..4cf2acaf3d 100644 --- a/gtk/gtksettings.c +++ b/gtk/gtksettings.c @@ -612,6 +612,11 @@ gtk_settings_class_init (GtkSettingsClass *class) NULL); g_assert (result == PROP_ALTERNATIVE_SORT_ARROWS); + /** + * GtkSettings:gtk-show-input-method-menu: + * + * Deprecated: 3.10: This setting is ignored. + */ result = settings_install_property_parser (class, g_param_spec_boolean ("gtk-show-input-method-menu", P_("Show the 'Input Methods' menu"), @@ -621,6 +626,11 @@ gtk_settings_class_init (GtkSettingsClass *class) NULL); g_assert (result == PROP_SHOW_INPUT_METHOD_MENU); + /** + * GtkSettings:gtk-show-unicode-menu: + * + * Deprecated: 3.10: This setting is ignored. + */ result = settings_install_property_parser (class, g_param_spec_boolean ("gtk-show-unicode-menu", P_("Show the 'Insert Unicode Control Character' menu"), @@ -988,7 +998,7 @@ gtk_settings_class_init (GtkSettingsClass *class) * This also can be a colon-separated list of input methods, which GTK+ * will try in turn until it finds one available on the system. * - * See #GtkIMContext and see the #GtkSettings:gtk-show-input-method-menu property. + * See #GtkIMContext. */ result = settings_install_property_parser (class, g_param_spec_string ("gtk-im-module", -- 2.30.2